home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / ruby / 1.8 / time.rb < prev    next >
Text File  |  2008-06-06  |  32KB  |  800 lines

  1.  
  2. #
  3. # == Introduction
  4. # This library extends the Time class:
  5. # * conversion between date string and time object.
  6. #   * date-time defined by RFC 2822
  7. #   * HTTP-date defined by RFC 2616
  8. #   * dateTime defined by XML Schema Part 2: Datatypes (ISO 8601)
  9. #   * various formats handled by Date._parse (string to time only)
  10. # == Design Issues
  11. # === Specialized interface
  12. # This library provides methods dedicated to special purposes:
  13. # * RFC 2822, RFC 2616 and XML Schema.
  14. # * They makes usual life easier.
  15. # === Doesn't depend on strftime
  16. # This library doesn't use +strftime+.  Especially #rfc2822 doesn't depend
  17. # on +strftime+ because:
  18. # * %a and %b are locale sensitive
  19. #   Since they are locale sensitive, they may be replaced to
  20. #   invalid weekday/month name in some locales.
  21. #   Since ruby-1.6 doesn't invoke setlocale by default,
  22. #   the problem doesn't arise until some external library invokes setlocale.
  23. #   Ruby/GTK is the example of such library.
  24. # * %z is not portable
  25. #   %z is required to generate zone in date-time of RFC 2822
  26. #   but it is not portable.
  27. #
  28. # == Revision Information
  29. #
  30. # $Id$
  31. #
  32.  
  33. require 'parsedate'
  34.  
  35. #
  36. # Implements the extensions to the Time class that are described in the
  37. # documentation for the time.rb library.
  38. #
  39. class Time
  40.   class << Time
  41.  
  42.     ZoneOffset = {
  43.       'UTC' => 0,
  44.       # ISO 8601
  45.       'Z' => 0,
  46.       # RFC 822
  47.       'UT' => 0, 'GMT' => 0,
  48.       'EST' => -5, 'EDT' => -4,
  49.       'CST' => -6, 'CDT' => -5,
  50.       'MST' => -7, 'MDT' => -6,
  51.       'PST' => -8, 'PDT' => -7,
  52.       # Following definition of military zones is original one.
  53.       # See RFC 1123 and RFC 2822 for the error in RFC 822.
  54.       'A' => +1, 'B' => +2, 'C' => +3, 'D' => +4,  'E' => +5,  'F' => +6, 
  55.       'G' => +7, 'H' => +8, 'I' => +9, 'K' => +10, 'L' => +11, 'M' => +12,
  56.       'N' => -1, 'O' => -2, 'P' => -3, 'Q' => -4,  'R' => -5,  'S' => -6, 
  57.       'T' => -7, 'U' => -8, 'V' => -9, 'W' => -10, 'X' => -11, 'Y' => -12,
  58.     }
  59.     def zone_offset(zone, year=self.now.year)
  60.       off = nil
  61.       zone = zone.upcase
  62.       if /\A([+-])(\d\d):?(\d\d)\z/ =~ zone
  63.         off = ($1 == '-' ? -1 : 1) * ($2.to_i * 60 + $3.to_i) * 60
  64.       elsif /\A[+-]\d\d\z/ =~ zone
  65.         off = zone.to_i * 3600
  66.       elsif ZoneOffset.include?(zone)
  67.         off = ZoneOffset[zone] * 3600
  68.       elsif ((t = self.local(year, 1, 1)).zone.upcase == zone rescue false)
  69.         off = t.utc_offset
  70.       elsif ((t = self.local(year, 7, 1)).zone.upcase == zone rescue false)
  71.         off = t.utc_offset
  72.       end
  73.       off
  74.     end
  75.  
  76.     def zone_utc?(zone)
  77.       # * +0000 means localtime. [RFC 2822]
  78.       # * GMT is a localtime abbreviation in Europe/London, etc.
  79.       if /\A(?:-00:00|-0000|-00|UTC|Z|UT)\z/i =~ zone
  80.         true
  81.       else
  82.         false
  83.       end
  84.     end
  85.     private :zone_utc?
  86.  
  87.     LeapYearMonthDays = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
  88.     CommonYearMonthDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
  89.     def month_days(y, m)
  90.       if ((y % 4 == 0) && (y % 100 != 0)) || (y % 400 == 0)
  91.         LeapYearMonthDays[m-1]
  92.       else
  93.         CommonYearMonthDays[m-1]
  94.       end
  95.     end
  96.     private :month_days
  97.  
  98.     def apply_offset(year, mon, day, hour, min, sec, off)
  99.       if off < 0
  100.         off = -off
  101.         off, o = off.divmod(60)
  102.         if o != 0 then sec += o; o, sec = sec.divmod(60); off += o end
  103.         off, o = off.divmod(60)
  104.         if o != 0 then min += o; o, min = min.divmod(60); off += o end
  105.         off, o = off.divmod(24)
  106.         if o != 0 then hour += o; o, hour = hour.divmod(24); off += o end
  107.         if off != 0
  108.           day += off
  109.           if month_days(year, mon) < day
  110.             mon += 1
  111.             if 12 < mon
  112.               mon = 1
  113.               year += 1
  114.             end
  115.             day = 1
  116.           end
  117.         end
  118.       elsif 0 < off
  119.         off, o = off.divmod(60)
  120.         if o != 0 then sec -= o; o, sec = sec.divmod(60); off -= o end
  121.         off, o = off.divmod(60)
  122.         if o != 0 then min -= o; o, min = min.divmod(60); off -= o end
  123.         off, o = off.divmod(24)
  124.         if o != 0 then hour -= o; o, hour = hour.divmod(24); off -= o end
  125.         if off != 0 then
  126.           day -= off
  127.           if day < 1
  128.             mon -= 1
  129.             if mon < 1
  130.               year -= 1
  131.               mon = 12
  132.             end
  133.             day = month_days(year, mon)
  134.           end
  135.         end
  136.       end
  137.       return year, mon, day, hour, min, sec
  138.     end
  139.     private :apply_offset
  140.  
  141.     def make_time(year, mon, day, hour, min, sec, sec_fraction, zone, now)
  142.       usec = nil
  143.       usec = (sec_fraction * 1000000).to_i if sec_fraction
  144.       if now
  145.         begin
  146.           break if year; year = now.year
  147.           break if mon; mon = now.mon
  148.           break if day; day = now.day
  149.           break if hour; hour = now.hour
  150.           break if min; min = now.min
  151.           break if sec; sec = now.sec
  152.           break if sec_fraction; usec = now.tv_usec
  153.         end until true
  154.       end
  155.  
  156.       year ||= 1970
  157.       mon ||= 1
  158.       day ||= 1
  159.       hour ||= 0
  160.       min ||= 0
  161.       sec ||= 0
  162.       usec ||= 0
  163.  
  164.       off = nil
  165.       off = zone_offset(zone, year) if zone
  166.  
  167.       if off
  168.         year, mon, day, hour, min, sec =
  169.           apply_offset(year, mon, day, hour, min, sec, off)
  170.         t = self.utc(year, mon, day, hour, min, sec, usec)
  171.         t.localtime if !zone_utc?(zone)
  172.         t
  173.       else
  174.         self.local(year, mon, day, hour, min, sec, usec)
  175.       end
  176.     end
  177.     private :make_time
  178.  
  179.     #
  180.     # Parses +date+ using Date._parse and converts it to a Time object.
  181.     #
  182.     # If a block is given, the year described in +date+ is converted by the
  183.     # block.  For example:
  184.     #
  185.     #     Time.parse(...) {|y| y < 100 ? (y >= 69 ? y + 1900 : y + 2000) : y}
  186.     #
  187.     # If the upper components of the given time are broken or missing, they are
  188.     # supplied with those of +now+.  For the lower components, the minimum
  189.     # values (1 or 0) are assumed if broken or missing.  For example:
  190.     #
  191.     #     # Suppose it is "Thu Nov 29 14:33:20 GMT 2001" now and
  192.     #     # your timezone is GMT:
  193.     #     Time.parse("16:30")     #=> Thu Nov 29 16:30:00 GMT 2001
  194.     #     Time.parse("7/23")      #=> Mon Jul 23 00:00:00 GMT 2001
  195.     #     Time.parse("Aug 31")    #=> Fri Aug 31 00:00:00 GMT 2001
  196.     #
  197.     # Since there are numerous conflicts among locally defined timezone
  198.     # abbreviations all over the world, this method is not made to
  199.     # understand all of them.  For example, the abbreviation "CST" is
  200.     # used variously as:
  201.     #
  202.     #     -06:00 in America/Chicago,
  203.     #     -05:00 in America/Havana,
  204.     #     +08:00 in Asia/Harbin,
  205.     #     +09:30 in Australia/Darwin,
  206.     #     +10:30 in Australia/Adelaide,
  207.     #     etc.
  208.     #
  209.     # Based on the fact, this method only understands the timezone
  210.     # abbreviations described in RFC 822 and the system timezone, in the
  211.     # order named. (i.e. a definition in RFC 822 overrides the system
  212.     # timezone definition.)  The system timezone is taken from
  213.     # <tt>Time.local(year, 1, 1).zone</tt> and
  214.     # <tt>Time.local(year, 7, 1).zone</tt>.
  215.     # If the extracted timezone abbreviation does not match any of them,
  216.     # it is ignored and the given time is regarded as a local time.
  217.     #
  218.     # ArgumentError is raised if Date._parse cannot extract information from
  219.     # +date+ or Time class cannot represent specified date.
  220.     #
  221.     # This method can be used as fail-safe for other parsing methods as:
  222.     #
  223.     #   Time.rfc2822(date) rescue Time.parse(date)
  224.     #   Time.httpdate(date) rescue Time.parse(date)
  225.     #   Time.xmlschema(date) rescue Time.parse(date)
  226.     #
  227.     # A failure for Time.parse should be checked, though.
  228.     #
  229.     def parse(date, now=self.now)
  230.       d = Date._parse(date, false)
  231.       year = d[:year]
  232.       year = yield(year) if year && block_given?
  233.       make_time(year, d[:mon], d[:mday], d[:hour], d[:min], d[:sec], d[:sec_fraction], d[:zone], now)
  234.     end
  235.  
  236.     MonthValue = {
  237.       'JAN' => 1, 'FEB' => 2, 'MAR' => 3, 'APR' => 4, 'MAY' => 5, 'JUN' => 6,
  238.       'JUL' => 7, 'AUG' => 8, 'SEP' => 9, 'OCT' =>10, 'NOV' =>11, 'DEC' =>12
  239.     }
  240.  
  241.     #
  242.     # Parses +date+ as date-time defined by RFC 2822 and converts it to a Time
  243.     # object.  The format is identical to the date format defined by RFC 822 and
  244.     # updated by RFC 1123.
  245.     #
  246.     # ArgumentError is raised if +date+ is not compliant with RFC 2822
  247.     # or Time class cannot represent specified date.
  248.     #
  249.     # See #rfc2822 for more information on this format.
  250.     #
  251.     def rfc2822(date)
  252.       if /\A\s*
  253.           (?:(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)\s*,\s*)?
  254.           (\d{1,2})\s+
  255.           (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s+
  256.           (\d{2,})\s+
  257.           (\d{2})\s*
  258.           :\s*(\d{2})\s*
  259.           (?::\s*(\d{2}))?\s+
  260.           ([+-]\d{4}|
  261.            UT|GMT|EST|EDT|CST|CDT|MST|MDT|PST|PDT|[A-IK-Z])/ix =~ date
  262.         # Since RFC 2822 permit comments, the regexp has no right anchor.
  263.         day = $1.to_i
  264.         mon = MonthValue[$2.upcase]
  265.         year = $3.to_i
  266.         hour = $4.to_i
  267.         min = $5.to_i
  268.         sec = $6 ? $6.to_i : 0
  269.         zone = $7
  270.  
  271.         # following year completion is compliant with RFC 2822.
  272.         year = if year < 50
  273.                  2000 + year
  274.                elsif year < 1000
  275.                  1900 + year
  276.                else
  277.                  year
  278.                end
  279.  
  280.         year, mon, day, hour, min, sec =
  281.           apply_offset(year, mon, day, hour, min, sec, zone_offset(zone))
  282.         t = self.utc(year, mon, day, hour, min, sec)
  283.         t.localtime if !zone_utc?(zone)
  284.         t
  285.       else
  286.         raise ArgumentError.new("not RFC 2822 compliant date: #{date.inspect}")
  287.       end
  288.     end
  289.     alias rfc822 rfc2822
  290.  
  291.     #
  292.     # Parses +date+ as HTTP-date defined by RFC 2616 and converts it to a Time
  293.     # object.
  294.     #
  295.     # ArgumentError is raised if +date+ is not compliant with RFC 2616 or Time
  296.     # class cannot represent specified date.
  297.     #
  298.     # See #httpdate for more information on this format.
  299.     #
  300.     def httpdate(date)
  301.       if /\A\s*
  302.           (?:Mon|Tue|Wed|Thu|Fri|Sat|Sun),\x20
  303.           (\d{2})\x20
  304.           (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\x20
  305.           (\d{4})\x20
  306.           (\d{2}):(\d{2}):(\d{2})\x20
  307.           GMT
  308.           \s*\z/ix =~ date
  309.         self.rfc2822(date)
  310.       elsif /\A\s*
  311.              (?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday),\x20
  312.              (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d)\x20
  313.              (\d\d):(\d\d):(\d\d)\x20
  314.              GMT
  315.              \s*\z/ix =~ date
  316.         self.parse(date)
  317.       elsif /\A\s*
  318.              (?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)\x20
  319.              (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\x20
  320.              (\d\d|\x20\d)\x20
  321.              (\d\d):(\d\d):(\d\d)\x20
  322.              (\d{4})
  323.              \s*\z/ix =~ date
  324.         self.utc($6.to_i, MonthValue[$1.upcase], $2.to_i,
  325.                  $3.to_i, $4.to_i, $5.to_i)
  326.       else
  327.         raise ArgumentError.new("not RFC 2616 compliant date: #{date.inspect}")
  328.       end
  329.     end
  330.  
  331.     #
  332.     # Parses +date+ as dateTime defined by XML Schema and converts it to a Time
  333.     # object.  The format is restricted version of the format defined by ISO
  334.     # 8601.
  335.     #
  336.     # ArgumentError is raised if +date+ is not compliant with the format or Time
  337.     # class cannot represent specified date.
  338.     #
  339.     # See #xmlschema for more information on this format.
  340.     #
  341.     def xmlschema(date)
  342.       if /\A\s*
  343.           (-?\d+)-(\d\d)-(\d\d)
  344.           T
  345.           (\d\d):(\d\d):(\d\d)
  346.           (\.\d*)?
  347.           (Z|[+-]\d\d:\d\d)?
  348.           \s*\z/ix =~ date
  349.         year = $1.to_i
  350.         mon = $2.to_i
  351.         day = $3.to_i
  352.         hour = $4.to_i
  353.         min = $5.to_i
  354.         sec = $6.to_i
  355.         usec = 0
  356.         usec = ($7[1..-1] + '000000')[0,6].to_i if $7
  357.         if $8
  358.           zone = $8
  359.           year, mon, day, hour, min, sec =
  360.             apply_offset(year, mon, day, hour, min, sec, zone_offset(zone))
  361.           self.utc(year, mon, day, hour, min, sec, usec)
  362.         else
  363.           self.local(year, mon, day, hour, min, sec, usec)
  364.         end
  365.       else
  366.         raise ArgumentError.new("invalid date: #{date.inspect}")
  367.       end
  368.     end
  369.     alias iso8601 xmlschema
  370.   end # class << self
  371.  
  372.   #
  373.   # Returns a string which represents the time as date-time defined by RFC 2822:
  374.   #
  375.   #   day-of-week, DD month-name CCYY hh:mm:ss zone
  376.   #
  377.   # where zone is [+-]hhmm.
  378.   #
  379.   # If +self+ is a UTC time, -0000 is used as zone.
  380.   #
  381.   def rfc2822
  382.     sprintf('%s, %02d %s %d %02d:%02d:%02d ',
  383.       RFC2822_DAY_NAME[wday],
  384.       day, RFC2822_MONTH_NAME[mon-1], year,
  385.       hour, min, sec) +
  386.     if utc?
  387.       '-0000'
  388.     else
  389.       off = utc_offset
  390.       sign = off < 0 ? '-' : '+'
  391.       sprintf('%s%02d%02d', sign, *(off.abs / 60).divmod(60))
  392.     end
  393.   end
  394.   alias rfc822 rfc2822
  395.  
  396.   RFC2822_DAY_NAME = [
  397.     'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'
  398.   ]
  399.   RFC2822_MONTH_NAME = [
  400.     'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
  401.     'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
  402.   ]
  403.  
  404.   #
  405.   # Returns a string which represents the time as rfc1123-date of HTTP-date
  406.   # defined by RFC 2616: 
  407.   # 
  408.   #   day-of-week, DD month-name CCYY hh:mm:ss GMT
  409.   #
  410.   # Note that the result is always UTC (GMT).
  411.   #
  412.   def httpdate
  413.     t = dup.utc
  414.     sprintf('%s, %02d %s %d %02d:%02d:%02d GMT',
  415.       RFC2822_DAY_NAME[t.wday],
  416.       t.day, RFC2822_MONTH_NAME[t.mon-1], t.year,
  417.       t.hour, t.min, t.sec)
  418.   end
  419.  
  420.   #
  421.   # Returns a string which represents the time as dateTime defined by XML
  422.   # Schema:
  423.   #
  424.   #   CCYY-MM-DDThh:mm:ssTZD
  425.   #   CCYY-MM-DDThh:mm:ss.sssTZD
  426.   #
  427.   # where TZD is Z or [+-]hh:mm.
  428.   #
  429.   # If self is a UTC time, Z is used as TZD.  [+-]hh:mm is used otherwise.
  430.   #
  431.   # +fractional_seconds+ specifies a number of digits of fractional seconds.
  432.   # Its default value is 0.
  433.   #
  434.   def xmlschema(fraction_digits=0)
  435.     sprintf('%d-%02d-%02dT%02d:%02d:%02d',
  436.       year, mon, day, hour, min, sec) +
  437.     if fraction_digits == 0
  438.       ''
  439.     elsif fraction_digits <= 6
  440.       '.' + sprintf('%06d', usec)[0, fraction_digits]
  441.     else
  442.       '.' + sprintf('%06d', usec) + '0' * (fraction_digits - 6)
  443.     end +
  444.     if utc?
  445.       'Z'
  446.     else
  447.       off = utc_offset
  448.       sign = off < 0 ? '-' : '+'
  449.       sprintf('%s%02d:%02d', sign, *(off.abs / 60).divmod(60))
  450.     end
  451.   end
  452.   alias iso8601 xmlschema
  453. end
  454.  
  455. if __FILE__ == $0
  456.   require 'test/unit'
  457.  
  458.   class TimeExtentionTest < Test::Unit::TestCase # :nodoc:
  459.     def test_rfc822
  460.       assert_equal(Time.utc(1976, 8, 26, 14, 30) + 4 * 3600,
  461.                    Time.rfc2822("26 Aug 76 14:30 EDT"))
  462.       assert_equal(Time.utc(1976, 8, 27, 9, 32) + 7 * 3600,
  463.                    Time.rfc2822("27 Aug 76 09:32 PDT"))
  464.     end
  465.  
  466.     def test_rfc2822
  467.       assert_equal(Time.utc(1997, 11, 21, 9, 55, 6) + 6 * 3600,
  468.                    Time.rfc2822("Fri, 21 Nov 1997 09:55:06 -0600"))
  469.       assert_equal(Time.utc(2003, 7, 1, 10, 52, 37) - 2 * 3600,
  470.                    Time.rfc2822("Tue, 1 Jul 2003 10:52:37 +0200"))
  471.       assert_equal(Time.utc(1997, 11, 21, 10, 1, 10) + 6 * 3600,
  472.                    Time.rfc2822("Fri, 21 Nov 1997 10:01:10 -0600"))
  473.       assert_equal(Time.utc(1997, 11, 21, 11, 0, 0) + 6 * 3600,
  474.                    Time.rfc2822("Fri, 21 Nov 1997 11:00:00 -0600"))
  475.       assert_equal(Time.utc(1997, 11, 24, 14, 22, 1) + 8 * 3600,
  476.                    Time.rfc2822("Mon, 24 Nov 1997 14:22:01 -0800"))
  477.       begin
  478.         Time.at(-1)
  479.       rescue ArgumentError
  480.         # ignore
  481.       else
  482.         assert_equal(Time.utc(1969, 2, 13, 23, 32, 54) + 3 * 3600 + 30 * 60,
  483.                      Time.rfc2822("Thu, 13 Feb 1969 23:32:54 -0330"))
  484.         assert_equal(Time.utc(1969, 2, 13, 23, 32, 0) + 3 * 3600 + 30 * 60,
  485.                      Time.rfc2822(" Thu,
  486.         13
  487.           Feb
  488.             1969
  489.         23:32
  490.                  -0330 (Newfoundland Time)"))
  491.       end
  492.       assert_equal(Time.utc(1997, 11, 21, 9, 55, 6),
  493.                    Time.rfc2822("21 Nov 97 09:55:06 GMT"))
  494.       assert_equal(Time.utc(1997, 11, 21, 9, 55, 6) + 6 * 3600,
  495.                    Time.rfc2822("Fri, 21 Nov 1997 09 :   55  :  06 -0600"))
  496.       assert_raise(ArgumentError) {
  497.         # inner comment is not supported.
  498.         Time.rfc2822("Fri, 21 Nov 1997 09(comment):   55  :  06 -0600")
  499.       }
  500.     end
  501.  
  502.     def test_rfc2616
  503.       t = Time.utc(1994, 11, 6, 8, 49, 37)
  504.       assert_equal(t, Time.httpdate("Sun, 06 Nov 1994 08:49:37 GMT"))
  505.       assert_equal(t, Time.httpdate("Sunday, 06-Nov-94 08:49:37 GMT"))
  506.       assert_equal(t, Time.httpdate("Sun Nov  6 08:49:37 1994"))
  507.       assert_equal(Time.utc(1995, 11, 15, 6, 25, 24),
  508.                    Time.httpdate("Wed, 15 Nov 1995 06:25:24 GMT"))
  509.       assert_equal(Time.utc(1995, 11, 15, 4, 58, 8),
  510.                    Time.httpdate("Wed, 15 Nov 1995 04:58:08 GMT"))
  511.       assert_equal(Time.utc(1994, 11, 15, 8, 12, 31),
  512.                    Time.httpdate("Tue, 15 Nov 1994 08:12:31 GMT"))
  513.       assert_equal(Time.utc(1994, 12, 1, 16, 0, 0),
  514.                    Time.httpdate("Thu, 01 Dec 1994 16:00:00 GMT"))
  515.       assert_equal(Time.utc(1994, 10, 29, 19, 43, 31),
  516.                    Time.httpdate("Sat, 29 Oct 1994 19:43:31 GMT"))
  517.       assert_equal(Time.utc(1994, 11, 15, 12, 45, 26),
  518.                    Time.httpdate("Tue, 15 Nov 1994 12:45:26 GMT"))
  519.       assert_equal(Time.utc(1999, 12, 31, 23, 59, 59),
  520.                    Time.httpdate("Fri, 31 Dec 1999 23:59:59 GMT"))
  521.     end
  522.  
  523.     def test_rfc3339
  524.       t = Time.utc(1985, 4, 12, 23, 20, 50, 520000)
  525.       s = "1985-04-12T23:20:50.52Z"
  526.       assert_equal(t, Time.iso8601(s))
  527.       assert_equal(s, t.iso8601(2))
  528.  
  529.       t = Time.utc(1996, 12, 20, 0, 39, 57)
  530.       s = "1996-12-19T16:39:57-08:00"
  531.       assert_equal(t, Time.iso8601(s))
  532.       # There is no way to generate time string with arbitrary timezone.
  533.       s = "1996-12-20T00:39:57Z"
  534.       assert_equal(t, Time.iso8601(s))
  535.       assert_equal(s, t.iso8601)
  536.  
  537.       t = Time.utc(1990, 12, 31, 23, 59, 60)
  538.       s = "1990-12-31T23:59:60Z"
  539.       assert_equal(t, Time.iso8601(s))
  540.       # leap second is representable only if timezone file has it.
  541.       s = "1990-12-31T15:59:60-08:00"
  542.       assert_equal(t, Time.iso8601(s))
  543.  
  544.       begin
  545.         Time.at(-1)
  546.       rescue ArgumentError
  547.         # ignore
  548.       else
  549.         t = Time.utc(1937, 1, 1, 11, 40, 27, 870000)
  550.         s = "1937-01-01T12:00:27.87+00:20"
  551.         assert_equal(t, Time.iso8601(s))
  552.       end
  553.     end
  554.  
  555.     # http://www.w3.org/TR/xmlschema-2/
  556.     def test_xmlschema
  557.       assert_equal(Time.utc(1999, 5, 31, 13, 20, 0) + 5 * 3600,
  558.                    Time.xmlschema("1999-05-31T13:20:00-05:00"))
  559.       assert_equal(Time.local(2000, 1, 20, 12, 0, 0),
  560.                    Time.xmlschema("2000-01-20T12:00:00"))
  561.       assert_equal(Time.utc(2000, 1, 20, 12, 0, 0),
  562.                    Time.xmlschema("2000-01-20T12:00:00Z"))
  563.       assert_equal(Time.utc(2000, 1, 20, 12, 0, 0) - 12 * 3600,
  564.                    Time.xmlschema("2000-01-20T12:00:00+12:00"))
  565.       assert_equal(Time.utc(2000, 1, 20, 12, 0, 0) + 13 * 3600,
  566.                    Time.xmlschema("2000-01-20T12:00:00-13:00"))
  567.       assert_equal(Time.utc(2000, 3, 4, 23, 0, 0) - 3 * 3600,
  568.                    Time.xmlschema("2000-03-04T23:00:00+03:00"))
  569.       assert_equal(Time.utc(2000, 3, 4, 20, 0, 0),
  570.                    Time.xmlschema("2000-03-04T20:00:00Z"))
  571.       assert_equal(Time.local(2000, 1, 15, 0, 0, 0),
  572.                    Time.xmlschema("2000-01-15T00:00:00"))
  573.       assert_equal(Time.local(2000, 2, 15, 0, 0, 0),
  574.                    Time.xmlschema("2000-02-15T00:00:00"))
  575.       assert_equal(Time.local(2000, 1, 15, 12, 0, 0),
  576.                    Time.xmlschema("2000-01-15T12:00:00"))
  577.       assert_equal(Time.utc(2000, 1, 16, 12, 0, 0),
  578.                    Time.xmlschema("2000-01-16T12:00:00Z"))
  579.       assert_equal(Time.local(2000, 1, 1, 12, 0, 0),
  580.                    Time.xmlschema("2000-01-01T12:00:00"))
  581.       assert_equal(Time.utc(1999, 12, 31, 23, 0, 0),
  582.                    Time.xmlschema("1999-12-31T23:00:00Z"))
  583.       assert_equal(Time.local(2000, 1, 16, 12, 0, 0),
  584.                    Time.xmlschema("2000-01-16T12:00:00"))
  585.       assert_equal(Time.local(2000, 1, 16, 0, 0, 0),
  586.                    Time.xmlschema("2000-01-16T00:00:00"))
  587.       assert_equal(Time.utc(2000, 1, 12, 12, 13, 14),
  588.                    Time.xmlschema("2000-01-12T12:13:14Z"))
  589.       assert_equal(Time.utc(2001, 4, 17, 19, 23, 17, 300000),
  590.                    Time.xmlschema("2001-04-17T19:23:17.3Z"))
  591.     end
  592.  
  593.     def test_encode_xmlschema
  594.       t = Time.utc(2001, 4, 17, 19, 23, 17, 300000)
  595.       assert_equal("2001-04-17T19:23:17Z", t.xmlschema)
  596.       assert_equal("2001-04-17T19:23:17.3Z", t.xmlschema(1))
  597.       assert_equal("2001-04-17T19:23:17.300000Z", t.xmlschema(6))
  598.       assert_equal("2001-04-17T19:23:17.3000000Z", t.xmlschema(7))
  599.  
  600.       t = Time.utc(2001, 4, 17, 19, 23, 17, 123456)
  601.       assert_equal("2001-04-17T19:23:17.1234560Z", t.xmlschema(7))
  602.       assert_equal("2001-04-17T19:23:17.123456Z", t.xmlschema(6))
  603.       assert_equal("2001-04-17T19:23:17.12345Z", t.xmlschema(5))
  604.       assert_equal("2001-04-17T19:23:17.1Z", t.xmlschema(1))
  605.  
  606.       begin
  607.         Time.at(-1)
  608.       rescue ArgumentError
  609.         # ignore
  610.       else
  611.         t = Time.utc(1960, 12, 31, 23, 0, 0, 123456)
  612.         assert_equal("1960-12-31T23:00:00.123456Z", t.xmlschema(6))
  613.       end
  614.  
  615.       assert_equal(249, Time.xmlschema("2008-06-05T23:49:23.000249+09:00").usec)
  616.     end
  617.  
  618.     def test_completion
  619.       now = Time.local(2001,11,29,21,26,35)
  620.       assert_equal(Time.local( 2001,11,29,21,12),
  621.                    Time.parse("2001/11/29 21:12", now))
  622.       assert_equal(Time.local( 2001,11,29),
  623.                    Time.parse("2001/11/29", now))
  624.       assert_equal(Time.local( 2001,11,29),
  625.                    Time.parse(     "11/29", now))
  626.       #assert_equal(Time.local(2001,11,1), Time.parse("Nov", now))
  627.       assert_equal(Time.local( 2001,11,29,10,22),
  628.                    Time.parse(           "10:22", now))
  629.     end
  630.  
  631.     def test_invalid
  632.       # They were actually used in some web sites.
  633.       assert_raise(ArgumentError) { Time.httpdate("1 Dec 2001 10:23:57 GMT") }
  634.       assert_raise(ArgumentError) { Time.httpdate("Sat, 1 Dec 2001 10:25:42 GMT") }
  635.       assert_raise(ArgumentError) { Time.httpdate("Sat,  1-Dec-2001 10:53:55 GMT") }
  636.       assert_raise(ArgumentError) { Time.httpdate("Saturday, 01-Dec-2001 10:15:34 GMT") }
  637.       assert_raise(ArgumentError) { Time.httpdate("Saturday, 01-Dec-101 11:10:07 GMT") }
  638.       assert_raise(ArgumentError) { Time.httpdate("Fri, 30 Nov 2001 21:30:00 JST") }
  639.  
  640.       # They were actually used in some mails.
  641.       assert_raise(ArgumentError) { Time.rfc2822("01-5-20") }
  642.       assert_raise(ArgumentError) { Time.rfc2822("7/21/00") }
  643.       assert_raise(ArgumentError) { Time.rfc2822("2001-8-28") }
  644.       assert_raise(ArgumentError) { Time.rfc2822("00-5-6 1:13:06") }
  645.       assert_raise(ArgumentError) { Time.rfc2822("2001-9-27 9:36:49") }
  646.       assert_raise(ArgumentError) { Time.rfc2822("2000-12-13 11:01:11") }
  647.       assert_raise(ArgumentError) { Time.rfc2822("2001/10/17 04:29:55") }
  648.       assert_raise(ArgumentError) { Time.rfc2822("9/4/2001 9:23:19 PM") }
  649.       assert_raise(ArgumentError) { Time.rfc2822("01 Nov 2001 09:04:31") }
  650.       assert_raise(ArgumentError) { Time.rfc2822("13 Feb 2001 16:4 GMT") }
  651.       assert_raise(ArgumentError) { Time.rfc2822("01 Oct 00 5:41:19 PM") }
  652.       assert_raise(ArgumentError) { Time.rfc2822("2 Jul 00 00:51:37 JST") }
  653.       assert_raise(ArgumentError) { Time.rfc2822("01 11 2001 06:55:57 -0500") }
  654.       assert_raise(ArgumentError) { Time.rfc2822("18 \343\366\356\341\370 2000") }
  655.       assert_raise(ArgumentError) { Time.rfc2822("Fri, Oct 2001  18:53:32") }
  656.       assert_raise(ArgumentError) { Time.rfc2822("Fri, 2 Nov 2001 03:47:54") }
  657.       assert_raise(ArgumentError) { Time.rfc2822("Fri, 27 Jul 2001 11.14.14 +0200") }
  658.       assert_raise(ArgumentError) { Time.rfc2822("Thu, 2 Nov 2000 04:13:53 -600") }
  659.       assert_raise(ArgumentError) { Time.rfc2822("Wed, 5 Apr 2000 22:57:09 JST") }
  660.       assert_raise(ArgumentError) { Time.rfc2822("Mon, 11 Sep 2000 19:47:33 00000") }
  661.       assert_raise(ArgumentError) { Time.rfc2822("Fri, 28 Apr 2000 20:40:47 +-900") }
  662.       assert_raise(ArgumentError) { Time.rfc2822("Fri, 19 Jan 2001 8:15:36 AM -0500") }
  663.       assert_raise(ArgumentError) { Time.rfc2822("Thursday, Sep 27 2001 7:42:35 AM EST") }
  664.       assert_raise(ArgumentError) { Time.rfc2822("3/11/2001 1:31:57 PM Pacific Daylight Time") }
  665.       assert_raise(ArgumentError) { Time.rfc2822("Mi, 28 Mrz 2001 11:51:36") }
  666.       assert_raise(ArgumentError) { Time.rfc2822("P, 30 sept 2001 23:03:14") }
  667.       assert_raise(ArgumentError) { Time.rfc2822("fr, 11 aug 2000 18:39:22") }
  668.       assert_raise(ArgumentError) { Time.rfc2822("Fr, 21 Sep 2001 17:44:03 -1000") }
  669.       assert_raise(ArgumentError) { Time.rfc2822("Mo, 18 Jun 2001 19:21:40 -1000") }
  670.       assert_raise(ArgumentError) { Time.rfc2822("l\366, 12 aug 2000 18:53:20") }
  671.       assert_raise(ArgumentError) { Time.rfc2822("l\366, 26 maj 2001 00:15:58") }
  672.       assert_raise(ArgumentError) { Time.rfc2822("Dom, 30 Sep 2001 17:36:30") }
  673.       assert_raise(ArgumentError) { Time.rfc2822("%&, 31 %2/ 2000 15:44:47 -0500") }
  674.       assert_raise(ArgumentError) { Time.rfc2822("dom, 26 ago 2001 03:57:07 -0300") }
  675.       assert_raise(ArgumentError) { Time.rfc2822("ter, 04 set 2001 16:27:58 -0300") }
  676.       assert_raise(ArgumentError) { Time.rfc2822("Wen, 3 oct 2001 23:17:49 -0400") }
  677.       assert_raise(ArgumentError) { Time.rfc2822("Wen, 3 oct 2001 23:17:49 -0400") }
  678.       assert_raise(ArgumentError) { Time.rfc2822("ele, 11 h: 2000 12:42:15 -0500") }
  679.       assert_raise(ArgumentError) { Time.rfc2822("Tue, 14 Aug 2001 3:55:3 +0200") }
  680.       assert_raise(ArgumentError) { Time.rfc2822("Fri, 25 Aug 2000 9:3:48 +0800") }
  681.       assert_raise(ArgumentError) { Time.rfc2822("Fri, 1 Dec 2000 0:57:50 EST") }
  682.       assert_raise(ArgumentError) { Time.rfc2822("Mon, 7 May 2001 9:39:51 +0200") }
  683.       assert_raise(ArgumentError) { Time.rfc2822("Wed, 1 Aug 2001 16:9:15 +0200") }
  684.       assert_raise(ArgumentError) { Time.rfc2822("Wed, 23 Aug 2000 9:17:36 +0800") }
  685.       assert_raise(ArgumentError) { Time.rfc2822("Fri, 11 Aug 2000 10:4:42 +0800") }
  686.       assert_raise(ArgumentError) { Time.rfc2822("Sat, 15 Sep 2001 13:22:2 +0300") }
  687.       assert_raise(ArgumentError) { Time.rfc2822("Wed,16 \276\305\324\302 2001 20:06:25 +0800") }
  688.       assert_raise(ArgumentError) { Time.rfc2822("Wed,7 \312\256\322\273\324\302 2001 23:47:22 +0800") }
  689.       assert_raise(ArgumentError) { Time.rfc2822("=?iso-8859-1?Q?(=C5=DA),?= 10   2 2001 23:32:26 +0900 (JST)") }
  690.       assert_raise(ArgumentError) { Time.rfc2822("\307\341\314\343\332\311, 30 \344\346\335\343\310\321 2001 10:01:06") }
  691.       assert_raise(ArgumentError) { Time.rfc2822("=?iso-8859-1?Q?(=BF=E5),?= 12  =?iso-8859-1?Q?9=B7=EE?= 2001 14:52:41\n+0900 (JST)") }
  692.     end
  693.  
  694.     def test_zone_0000
  695.       assert_equal(true, Time.parse("2000-01-01T00:00:00Z").utc?)
  696.       assert_equal(true, Time.parse("2000-01-01T00:00:00-00:00").utc?)
  697.       assert_equal(false, Time.parse("2000-01-01T00:00:00+00:00").utc?)
  698.       assert_equal(false, Time.parse("Sat, 01 Jan 2000 00:00:00 GMT").utc?)
  699.       assert_equal(true, Time.parse("Sat, 01 Jan 2000 00:00:00 -0000").utc?)
  700.       assert_equal(false, Time.parse("Sat, 01 Jan 2000 00:00:00 +0000").utc?)
  701.       assert_equal(false, Time.rfc2822("Sat, 01 Jan 2000 00:00:00 GMT").utc?)
  702.       assert_equal(true, Time.rfc2822("Sat, 01 Jan 2000 00:00:00 -0000").utc?)
  703.       assert_equal(false, Time.rfc2822("Sat, 01 Jan 2000 00:00:00 +0000").utc?)
  704.       assert_equal(true, Time.rfc2822("Sat, 01 Jan 2000 00:00:00 UTC").utc?)
  705.     end
  706.  
  707.     def test_parse_leap_second
  708.       t = Time.utc(1998,12,31,23,59,59)
  709.       assert_equal(t, Time.parse("Thu Dec 31 23:59:59 UTC 1998"))
  710.       assert_equal(t, Time.parse("Fri Dec 31 23:59:59 -0000 1998"));t.localtime
  711.       assert_equal(t, Time.parse("Fri Jan  1 08:59:59 +0900 1999"))
  712.       assert_equal(t, Time.parse("Fri Jan  1 00:59:59 +0100 1999"))
  713.       assert_equal(t, Time.parse("Fri Dec 31 23:59:59 +0000 1998"))
  714.       assert_equal(t, Time.parse("Fri Dec 31 22:59:59 -0100 1998"));t.utc
  715.       t += 1
  716.       assert_equal(t, Time.parse("Thu Dec 31 23:59:60 UTC 1998"))
  717.       assert_equal(t, Time.parse("Fri Dec 31 23:59:60 -0000 1998"));t.localtime
  718.       assert_equal(t, Time.parse("Fri Jan  1 08:59:60 +0900 1999"))
  719.       assert_equal(t, Time.parse("Fri Jan  1 00:59:60 +0100 1999"))
  720.       assert_equal(t, Time.parse("Fri Dec 31 23:59:60 +0000 1998"))
  721.       assert_equal(t, Time.parse("Fri Dec 31 22:59:60 -0100 1998"));t.utc
  722.       t += 1 if t.sec == 60
  723.       assert_equal(t, Time.parse("Thu Jan  1 00:00:00 UTC 1999"))
  724.       assert_equal(t, Time.parse("Fri Jan  1 00:00:00 -0000 1999"));t.localtime
  725.       assert_equal(t, Time.parse("Fri Jan  1 09:00:00 +0900 1999"))
  726.       assert_equal(t, Time.parse("Fri Jan  1 01:00:00 +0100 1999"))
  727.       assert_equal(t, Time.parse("Fri Jan  1 00:00:00 +0000 1999"))
  728.       assert_equal(t, Time.parse("Fri Dec 31 23:00:00 -0100 1998"))
  729.     end
  730.  
  731.     def test_rfc2822_leap_second
  732.       t = Time.utc(1998,12,31,23,59,59)
  733.       assert_equal(t, Time.rfc2822("Thu, 31 Dec 1998 23:59:59 UTC"))
  734.       assert_equal(t, Time.rfc2822("Fri, 31 Dec 1998 23:59:59 -0000"));t.localtime                                  
  735.       assert_equal(t, Time.rfc2822("Fri,  1 Jan 1999 08:59:59 +0900"))
  736.       assert_equal(t, Time.rfc2822("Fri,  1 Jan 1999 00:59:59 +0100"))
  737.       assert_equal(t, Time.rfc2822("Fri, 31 Dec 1998 23:59:59 +0000"))
  738.       assert_equal(t, Time.rfc2822("Fri, 31 Dec 1998 22:59:59 -0100"));t.utc                                  
  739.       t += 1
  740.       assert_equal(t, Time.rfc2822("Thu, 31 Dec 1998 23:59:60 UTC"))
  741.       assert_equal(t, Time.rfc2822("Fri, 31 Dec 1998 23:59:60 -0000"));t.localtime                                  
  742.       assert_equal(t, Time.rfc2822("Fri,  1 Jan 1999 08:59:60 +0900"))
  743.       assert_equal(t, Time.rfc2822("Fri,  1 Jan 1999 00:59:60 +0100"))
  744.       assert_equal(t, Time.rfc2822("Fri, 31 Dec 1998 23:59:60 +0000"))
  745.       assert_equal(t, Time.rfc2822("Fri, 31 Dec 1998 22:59:60 -0100"));t.utc                                  
  746.       t += 1 if t.sec == 60
  747.       assert_equal(t, Time.rfc2822("Thu,  1 Jan 1999 00:00:00 UTC"))
  748.       assert_equal(t, Time.rfc2822("Fri,  1 Jan 1999 00:00:00 -0000"));t.localtime                                  
  749.       assert_equal(t, Time.rfc2822("Fri,  1 Jan 1999 09:00:00 +0900"))
  750.       assert_equal(t, Time.rfc2822("Fri,  1 Jan 1999 01:00:00 +0100"))
  751.       assert_equal(t, Time.rfc2822("Fri,  1 Jan 1999 00:00:00 +0000"))
  752.       assert_equal(t, Time.rfc2822("Fri, 31 Dec 1998 23:00:00 -0100"))
  753.     end
  754.  
  755.     def test_xmlschema_leap_second
  756.       t = Time.utc(1998,12,31,23,59,59)
  757.       assert_equal(t, Time.xmlschema("1998-12-31T23:59:59Z"))
  758.       assert_equal(t, Time.xmlschema("1998-12-31T23:59:59-00:00"));t.localtime
  759.       assert_equal(t, Time.xmlschema("1999-01-01T08:59:59+09:00"))
  760.       assert_equal(t, Time.xmlschema("1999-01-01T00:59:59+01:00"))
  761.       assert_equal(t, Time.xmlschema("1998-12-31T23:59:59+00:00"))
  762.       assert_equal(t, Time.xmlschema("1998-12-31T22:59:59-01:00"));t.utc
  763.       t += 1
  764.       assert_equal(t, Time.xmlschema("1998-12-31T23:59:60Z"))
  765.       assert_equal(t, Time.xmlschema("1998-12-31T23:59:60-00:00"));t.localtime
  766.       assert_equal(t, Time.xmlschema("1999-01-01T08:59:60+09:00"))
  767.       assert_equal(t, Time.xmlschema("1999-01-01T00:59:60+01:00"))
  768.       assert_equal(t, Time.xmlschema("1998-12-31T23:59:60+00:00"))
  769.       assert_equal(t, Time.xmlschema("1998-12-31T22:59:60-01:00"));t.utc
  770.       t += 1 if t.sec == 60
  771.       assert_equal(t, Time.xmlschema("1999-01-01T00:00:00Z"))
  772.       assert_equal(t, Time.xmlschema("1999-01-01T00:00:00-00:00"));t.localtime
  773.       assert_equal(t, Time.xmlschema("1999-01-01T09:00:00+09:00"))
  774.       assert_equal(t, Time.xmlschema("1999-01-01T01:00:00+01:00"))
  775.       assert_equal(t, Time.xmlschema("1999-01-01T00:00:00+00:00"))
  776.       assert_equal(t, Time.xmlschema("1998-12-31T23:00:00-01:00"))
  777.     end
  778.  
  779.     def test_ruby_talk_152866
  780.       t = Time::xmlschema('2005-08-30T22:48:00-07:00')
  781.       assert_equal(31, t.day)
  782.       assert_equal(8, t.mon)
  783.     end
  784.  
  785.     def test_parse_fraction
  786.       assert_equal(500000, Time.parse("2000-01-01T00:00:00.5+00:00").tv_usec)
  787.     end
  788.   end
  789. end
  790.